home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk10.zip / XENIX_R2.H < prev    next >
C/C++ Source or Header  |  1991-10-05  |  1KB  |  53 lines

  1.  
  2. /********************************************
  3. xenix_r2.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13.  
  14. /* 
  15.    This has been compiled and tested on
  16.    SCO XENIX R2.3.1 SysV on a i386
  17.  
  18.    The floating point support is poor.
  19.    Even with a coprocessor there is no access to IEEE754
  20.    functionality.
  21.  
  22.    There is no way to tell what caused SIGFPE
  23.  
  24. */
  25.  
  26. /*$Log:    xenix_r2.h,v $
  27.  * Revision 4.1  91/09/25  11:42:13  brennan
  28.  * VERSION 1.0
  29.  * 
  30.  * Revision 1.2  91/08/13  09:04:24  brennan
  31.  * VERSION .9994
  32.  * 
  33.  * Revision 1.1  91/06/19  10:17:08  brennan
  34.  * Initial revision
  35.  * 
  36. */
  37.  
  38. #ifndef    CONFIG_H
  39. #define    CONFIG_H        1
  40.  
  41. #define        FPE_TRAPS_ON        1
  42. #define        NOINFO_SIGFPE        1
  43.  
  44. #if  0
  45. I would guess that on a 286 you would want to
  46. #define        HAVE_SMALL_MEMORY        1
  47. #endif
  48.  
  49.  
  50. #include  "config/Idefault.h"
  51.  
  52. #endif   /* CONFIG_H */
  53.